CaseSensitiveSearch Property (ListBox<T>)
In This Topic
Gets or sets a value that determines whether searches performed while the user types should case-sensitive.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(False)>
Public Property CaseSensitiveSearch As System.Boolean
'Usage
Dim instance As ListBox(Of T)
Dim value As System.Boolean
instance.CaseSensitiveSearch = value
value = instance.CaseSensitiveSearch
[System.ComponentModel.DefaultValue(false)]
public System.bool CaseSensitiveSearch {get; set;}
public read-write property CaseSensitiveSearch: System.Boolean;
System.ComponentModel.DefaultValueAttribute()
public function get,set CaseSensitiveSearch : System.boolean
[System.ComponentModel.DefaultValue(false)]
public: __property System.bool get_CaseSensitiveSearch();
public: __property void set_CaseSensitiveSearch(
System.bool value
);
[System.ComponentModel.DefaultValue(false)]
public:
property System.bool CaseSensitiveSearch {
System.bool get();
void set ( System.bool value);
}
See Also